home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds5000.md / devGraphicsInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  40 lines

  1. /*
  2.  * devGraphicsInt.h --
  3.  *
  4.  *    Declarations for the grahics devices.
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds5000.md/devGraphicsInt.h,v 1.1 91/10/30 12:19:06 mgbaker Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVGRAPHICSINT
  19. #define _DEVGRAPHICSINT
  20.  
  21. /*
  22.  * Different types of supported displays.
  23.  */
  24. #define UNKNOWN    0
  25. #define PMAGBA    1
  26. #define PMAGDA    2
  27.  
  28. #define PMAGBA_BUFFER_OFFSET        (0)
  29. #define PMAGBA_RAMDAC_OFFSET         (0x200000)
  30. #define PMAGBA_IREQ_OFFSET        (0x300000)
  31. #define PMAGBA_ROM_OFFSET         (0x380000)
  32. #define PMAGBA_ROM2_OFFSET        (0x3c0000)
  33. #define PMAGBA_WIDTH            1024
  34. #define PMAGBA_HEIGHT            864
  35. #define PMAGBA_PLANES            8
  36.  
  37.  
  38. #endif /* _DEVGRAPHICSINT */
  39.  
  40.